839f49f55df9e9ae62b4bb5de8f5cbf538dbba3c,com/pff/PSTDescriptorItem.java,PSTDescriptorItem,getSubNodeData,#,65
Before Change
throws IOException, PSTException
{
if (subNodeOffsetIndexIdentifier != 0) {
PSTFile.PSTFileBlock subNodeDataBlock = pstFile.readLeaf(subNodeOffsetIndexIdentifier);
if ( subNodeDataBlock.blockOffsets != null &&
subNodeDataBlock.blockOffsets.length > 1 ) {
System.out.printf("SubNode (0x%08X) has more than one data block!", subNodeOffsetIndexIdentifier);
}
return subNodeDataBlock.data;
}
return null;
After Change
throws IOException, PSTException
{
if (subNodeOffsetIndexIdentifier != 0) {
return pstFile.readLeaf(subNodeOffsetIndexIdentifier);
/*
PSTFile.PSTFileBlock subNodeDataBlock = pstFile.readLeaf(subNodeOffsetIndexIdentifier);
if ( subNodeDataBlock.blockOffsets != null &&